Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /** * Dev Ticket Detail Page * /admin/dev/tickets/[id] - View and manage a single dev ticket */ import DevTicketDetail from '@/components/features/admin/dev/DevTicketDetail'; export const metadata = { title: 'Ticket Details | Dev Tickets', description: 'View and manage dev ticket details'}; interface PageProps { params: Promise<{ id: string }>; } export default async function DevTicketDetailPage({ params }: PageProps) { const { id } = await params; return <DevTicketDetail ticketId={id} />; } |